home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / PROLOG / BP330 / !BinPro330 / progs / lgraph < prev    next >
Text File  |  1994-12-16  |  224b  |  13 lines

  1. p:-[lgraph].
  2.  
  3. path(X,X,[X]).
  4. path(X,Z,[X|Xs]):-linked(X,Y),path(Y,Z,Xs).
  5.  
  6. linked(X,Y):-c(X,Ys),member(Y,Ys).
  7.  
  8. go(Xs):-
  9.   c(1,[2,3]) -: c(2,[1,4]) -: c(3,[1,5]) -: c(4,[1,5]) -:
  10.   path(1,5,Xs).
  11.  
  12. go:-go(Xs),write(Xs),nl,fail.
  13.